From: Stefan Monnier Date: Thu, 1 Feb 2024 16:08:56 +0000 (-0500) Subject: * src/lread.c (bytecode_from_rev_list): Fix thinko X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~2720 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8b92449b706e33da256142e190008bb1ead2e539;p=emacs.git * src/lread.c (bytecode_from_rev_list): Fix thinko --- diff --git a/src/lread.c b/src/lread.c index a6bfdfcf626..cc55b009ab9 100644 --- a/src/lread.c +++ b/src/lread.c @@ -3490,7 +3490,7 @@ bytecode_from_rev_list (Lisp_Object elems, Lisp_Object readcharfun) Lisp_Object *vec = XVECTOR (obj)->contents; ptrdiff_t size = ASIZE (obj); - if (!(size >= COMPILED_CONSTANTS)) + if (size >= COMPILED_CONSTANTS) { /* Always read 'lazily-loaded' bytecode (generated by the `byte-compile-dynamic' feature prior to Emacs 30) eagerly, to